fef57824e68206b37c71c5cfaf1b03562075fc2f,src/main/java/com/omertron/omdbapi/tools/OmdbUrlBuilder.java,OmdbUrlBuilder,create,#OmdbParameters#,48

Before Change


        }

        // Append the JSON request - This is not used by this API
        if (params.has(Param.DATA)) {
            appendParam(params, Param.DATA, sb);
        }

        // Append the version
        if (params.has(Param.VERSION)) {
            appendParam(params, Param.VERSION, sb);
        }

        // Append the callback function - This is not used by this API

After Change


        appendParam(params, Param.RESULT, sb);

        // Append the JSON request - This is not used by this API
        appendParam(params, Param.DATA, sb);

        // Append the version
        appendParam(params, Param.VERSION, sb);

        // Append the callback function - This is not used by this API
        appendParam(params, Param.CALLBACK, sb);